static const char vowels[] = "aeiouAEIOU";
#define DEFAULT_TARGET_LEN 8
-static int target_len = DEFAULT_TARGET_LEN;
+static unsigned int target_len = DEFAULT_TARGET_LEN;
#define DEFAULT_BADCHARS "\"$.,'!-"
static const char *badchars = DEFAULT_BADCHARS;
static void
psp_read(void)
{
- unsigned char buff[MAXPSPSTRINGSIZE + 1];
+ char buff[MAXPSPSTRINGSIZE + 1];
double radians;
waypoint *wpt_tmp;
int stringsize;
psp_waypt_pr(const waypoint *wpt)
{
double lon, lat;
- unsigned char tbuf[64];
+ char tbuf[64];
char c;
int i;
char *shortname;